* {
 box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;    
	}

body {
height: 100%;
margin: 0;
}

.hero-image {
  /* The image used */
 /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */    
 background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../Level1/Images/Cookie_Disclaimer.jpg");
  /* Set a specific height */
 height: 100%; 

  /* Center and scale the image nicely */
  background-position:top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}



/* Place text in the middle of the image */
.hero-text1 {
  text-align: center;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #E9E6DB;
  font-size: 1.5rem;
     
  }

.hero-text2 {
  text-align: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #E9E6DB;
  font-size: 1.5rem;
     
  }

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #E9E6DB;
  text-align: center;
  cursor: pointer;    
  }


a:link, a:visited{
	
	text-decoration: none;
	color: #582223;
	padding: 10px;
	display: block;
	
}

a:hover {
	background-color: none;
	color: #582223;
}



/*
h1 {
  font-size: 1.5rem;
  color: #582223;
  margin-left: 20px;
  padding: 0.25em;
  background: none;
  line-height: 1.1em;
  text-align: center;
}

p {
  font-size: 1rem;
  color: #582223;
  margin-left: 20px;
  padding: 0.25em;
  background: none;
  line-height: 1.1em;
  text-align: center;	
}
*/

@media (orientation: portrait) {

.hero-image {
  /* The image used */
 /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */    
 background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../Level1/Images/Cookie_Disclaimer_Portrait.jpg");
  /* Set a specific height */
 height: 100%; 
}
    
}    